====================================================
  VULNERD — Raspberry Pi / Ubuntu Setup
  Run 24/7 on your home server
====================================================

STEP 1 — Copy files to your Pi
--------------------------------
  From your PC, open a terminal and run:
    scp Vulnerd.zip pi@YOUR_PI_IP:~/

  Then SSH into your Pi:
    ssh pi@YOUR_PI_IP

  Unzip it:
    cd ~
    unzip Vulnerd.zip
    cd Vulnerd


STEP 2 — Install dependencies
--------------------------------
    pip3 install -r requirements.txt


STEP 3 — Test it runs
----------------------
    python3 app.py

  You should see:
    Local:   http://localhost:5001
    Network: http://192.168.x.x:5001

  Open that Network address from any device on your
  Wi-Fi (phone, laptop, etc.) to use the app.

  Press Ctrl+C to stop, then continue to Step 4.


STEP 4 — Run 24/7 with systemd
--------------------------------
  Edit the service file to match your username:
    nano vulnerd.service

  Change "pi" to your actual username if different
  (check with: whoami)

  Install the service:
    sudo cp vulnerd.service /etc/systemd/system/
    sudo systemctl daemon-reload
    sudo systemctl enable vulnerd
    sudo systemctl start vulnerd

  Check it's running:
    sudo systemctl status vulnerd

  It will now start automatically every time the Pi boots.


STEP 5 — Find your Pi's IP address
------------------------------------
  Run this on your Pi:
    hostname -I

  Bookmark that IP on your other devices:
    http://192.168.x.x:5001

  TIP: Set a static IP in your router settings so
  the address never changes.


USEFUL COMMANDS
---------------
  Stop the app:     sudo systemctl stop vulnerd
  Start the app:    sudo systemctl start vulnerd
  Restart the app:  sudo systemctl restart vulnerd
  View logs:        sudo journalctl -u vulnerd -f


UPDATING THE APP
-----------------
  1. Copy new files to the Pi (scp or USB drive)
  2. sudo systemctl restart vulnerd


====================================================
  Vulnerd — Your network's GPA.
====================================================
